home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 9078 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  599 b 

  1. Path: newsfeed.direct.ca!usenet
  2. From: etoivane@direct.ca (Ed Toivanen)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Newbie doesn't understand compiler error
  5. Date: 8 Mar 1996 05:10:13 GMT
  6. Organization: Your Organization
  7. Message-ID: <4hoffl$l74@aphex.direct.ca>
  8. References: <Pine.SUN.3.91.960301153010.11258B-100000@pioneer.uspto.gov>
  9. NNTP-Posting-Host: 204.174.243.144
  10. Mime-Version: 1.0
  11. Content-Type: Text/Plain; charset=US-ASCII
  12. X-Newsreader: WinVN 0.99.6
  13.  
  14.  
  15. >
  16. >main( int argv, char *argc[] )  <<- Compiler states "Syntax error at or near
  17.  
  18. Try 
  19.  main(int argc, char* argv[])
  20.  
  21. That should fixn things up.
  22.  
  23.  
  24.